home *** CD-ROM | disk | FTP | other *** search
- rem Converting to Installation Script - 5/21/91 - RFA & Mark Wilden
- rem Parameters are
- rem %1: drive on which to install the program
- rem %2: drive from which installation is taking place
- rem %3: contents of the configuration file
- rem Note that the trailing colon must NOT be entered!
- rem Check to see that there is enough space for the installation.
- space %1: 900 NoSpace
- godir %1:\sierra\robin CantCreate
- rem Copy over the necessary files.
- echo Copying drivers...
- copy %2:*.drv
- copy %2:*.hlp
- copy %2:*.txt
- echo Copying resources...
- rem copy %2:scidhv.exe
- copy %2:sierra.exe %1:robin.exe
- copy %2:resource.001
- copy %2:resource.map
- copy %2:install.exe
- copy %2:readme
- echo %3 > resource.cfg
- copy %2:sierra.bat %1:robin.bat
- godir %1:\sierra
- copy %2:robin.bat
- cd..
- REM godir %1:\
- copy %2:root.bat %1:robin.bat
- end
-
- :NoSpace
- echo There is not enough space on %1 to install this Demo.
- echo Approximately 900 Kbytes of disk space are required.
- pause
- goto Exit
-
- :CantCreate
- echo Unable to create directory %1.
- pause
- goto Exit
-
- :Exit
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-